[POWERPC][XEN] Detect bad spurious interrupt condition and panic instead of hang
authorJimi Xenidis <jimix@watson.ibm.com>
Tue, 12 Sep 2006 10:47:22 +0000 (06:47 -0400)
committerJimi Xenidis <jimix@watson.ibm.com>
Tue, 12 Sep 2006 10:47:22 +0000 (06:47 -0400)
When handing off the MPIC from Xen to Dom0, which is the current yet
not permamnet design, the MPIC can cause the processor to assert an
external interrupt when none is available.  Rather then simply hang in
this condition we now panic so the user can see that there is indeed a
problem and identify it as this one.

This condition seems to be related to temperature and the probablity
of it occuring decreases if the machine is allowed to stay idle (not
in the Xen panic loop) for a minute or two.

Signed-off-by: Jimi Xenidis <jimix@watson.ibm.com>
Signed-off-by: Hollis Blanchard <hollisb@us.ibm.com>
xen/arch/powerpc/external.c

index 8b9e17a886fab73eb4d8b7189af40fe93883eccd..f1600d1681af9600816c64a80b21de02292c16c6 100644 (file)
@@ -75,6 +75,7 @@ void deliver_ee(struct cpu_user_regs *regs)
 void do_external(struct cpu_user_regs *regs)
 {
     int vec;
+    static unsigned spur_count;
 
     BUG_ON(!(regs->msr & MSR_EE));
     BUG_ON(mfmsr() & MSR_EE);
@@ -87,6 +88,14 @@ void do_external(struct cpu_user_regs *regs)
         do_IRQ(regs);
 
         BUG_ON(mfmsr() & MSR_EE);
+        spur_count = 0;
+    } else {
+        ++spur_count;
+        if (spur_count > 100)
+            panic("Too many (%d) spurrious interrupts in a row\n"
+                  "  Known problem, please halt and let machine idle/cool "
+                  "  then reboot\n",
+                  100);
     }
 }